body {
    background-color: #f5f5dc;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    background-image: url("background image.jpeg");
    margin-top: 0;
}
* {
    text-decoration: none;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 30px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
.logo {
    width: 100px;
}
.logo img {
    height: 200px;
    width: auto;
    padding-top: 20px;
}
ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
nav ul li a {
    line-height: 80px;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
nav ul li a:hover {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
}
.image-container {
    position: relative;
    width: 100%;
    height: auto;
}
.background-img {
    width: 100%;
    height: auto;
    margin-top: 0;
}
.logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    filter: brightness(2.0);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.heading {
    text-align: center;
    margin-top: 20px;
}
.heading h1 {
    font-size: 70px;
    color: #36455c;
    margin-bottom: 10px;
}
.heading p {
    font-size: 30px;
    color: #666;
    margin-top: 30px;
}
.journey, .about-us, .section {
    background-color: transparent;
}
.journey {
    padding: 40px;
    text-align: center;
    margin: 50px auto;
    border-radius: 10px;
    width: 80%;
}
.journey-image {
    text-align: center;
    margin-bottom: 30px;
}
.journey-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
}
.journey h2 {
    font-size: 48px;
    color: #324556;
    margin-bottom: 20px;
}
.journey p {
    font-size: 24px;
    color: #666;
    line-height: 1.6;
}
.quote {
    font-size: 22px;
    font-style: italic;
    color: #555;
    margin: 20px 0;
}
.contact-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    cursor: pointer;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}
.contact-btn:hover {
    background-color: #006d00;
}
.about-us {
    display: flex;
    align-items: flex-start;
    width: 85%;
    margin: 50px auto;
    gap: 0;
    padding: 20px;
    flex-wrap: wrap;
}
.about-us img {
    width: 40%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.content {
    width: 60%;
    padding-left: 100px;
}
.content h2 {
    font-size: 48px;
    color: #324556;
    margin-bottom: 30px;
}
.content p {
    font-size: 24px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
    padding-left: 30px;
    font-weight: bolder;
}
.content p::before {
    content: '“';
    font-size: 70px;
    color: #000;
    position: absolute;
    top: -15px;
    left: -20px;
}
.content p::after {
    content: '”';
    font-size: 70px;
    color: #000;
    position: absolute;
    bottom: -15px;
    right: -20px;
}
.read-more-btn {
    display: block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    text-align: center;
}
.read-more-btn:hover {
    background-color: #f44336;
}
.awards-section {
    text-align: center;
    padding: 40px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}
.awards-gallery {
    display: flex;
    gap: 60px;
    animation: scroll-loop 20s linear infinite;
}
.awards-heading {
    font-size: 36px;
    color: #324556;
    text-align: center;
    margin-bottom: 30px;
}
.awards-gallery-wrapper {
    display: flex;
    gap: 0;
    animation: scroll-seamless 20s linear infinite;
}
.award-img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    background-color: #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    padding: 12px;
}
@keyframes scroll-seamless {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 6));
    }
}
.section {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    padding: 20px;
    gap: 50px;
    width: 85%;
    border-radius: 10px;
}
.section img {
    width: 40%;
    height: auto;
    border-radius: 10px;
}
.content-section {
    width: 60%;
}
.content-section h2 {
    font-size: 36px;
    color: #324556;
    margin-bottom: 20px;
}
.content-section p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .about-us {
        flex-direction: column;
        text-align: center;
    }
    .about-us img {
        width: 80%;
        margin-bottom: 20px;
    }
    .content {
        width: 100%;
    }
    .section {
        flex-direction: column;
        text-align: center;
    }
    .section img {
        width: 80%;
        margin-bottom: 20px;
    }
    .content-section {
        width: 100%;
    }
}
.box {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    overflow: hidden;
}
@keyframes appear {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
.footercontainer {
    width: 97%;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footercontent {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footernav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footernav ul li {
    margin: 0 10px;
}

.footernav ul li a {
    color: black;
    text-decoration: none;
    font-size: 1.1em;
    opacity: 0.6;
    transition: 0.5s;
}

.footernav ul li a:hover {
    opacity: 1;
}

.social {
    display: flex;
}

.social a {
    text-decoration: none;
    margin: 0 15px;
    border-radius: 50%;
}

.social a i {
    font-size: 2em;
    color: black;
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}

.social a:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.footerbottom {
    text-align: center;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin-top: 20px;
    font-size: 1.1em;
}
